{% extends "trees/base.html" %} {% block title %}Tasks - JM3{% endblock %} {% block content %}

Today's Tasks

Complete a task to keep your trees verified and alive.

{% for task in tasks %}
{% if task.task_type == 'check_tree' %}🌳{% elif task.task_type == 'water_nursery' %}💧{% else %}📷{% endif %} {{ task.title }} {% if task.task_type == 'check_tree' and task.asset %} Check {% elif task.task_type == 'review_photo' and task.asset %} Review {% endif %}
{% csrf_token %}
{% empty %}
🎉
All tasks complete. Great work!
{% endfor %}
{% endblock %} {% block extra_js %}{% endblock %}